home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / util2 / browse.do1 < prev    next >
Encoding:
Text File  |  1986-10-30  |  4.1 KB  |  88 lines

  1.  
  2.           Browse                                 Charles Petzold
  3.           Command                                          No. 3
  4.  
  5.           _______________________________________________________
  6.  
  7.           Purpose   Permits scrolling forward and backward
  8.                     throughout a file without use of a word
  9.                     processing program.
  10.  
  11.           Format:   BROWSE [d:][path]filename[.ext] [/W]
  12.  
  13.           Remarks:  The DOS TYPE command does not permit you to
  14.                     scroll ahead or go back to previously
  15.                     displayed material in a file.  It also exits
  16.                     at the first instance of Ctrl-Z (ASCII 26,
  17.                     conventionally used as an End-of-File
  18.                     marker), making it impossible to scan binary
  19.                     (e.g. .COM) files for error messages,
  20.                     copyright notices, and the like.
  21.  
  22.                     BROWSE.COM overcomes these shortcomings,
  23.                     giving you the chance to go immediately to
  24.                     the top or to the end of a file (the Home and
  25.                     End keys, respectively), to the succeeding or
  26.                     previous screen (PgUp and PgDn), or to move
  27.                     up or down a line at a time (Up Arrow or Down
  28.                     Arrow).  To return to DOS, simply press the
  29.                     Escape key or Ctrl-Break.
  30.  
  31.                     Wide displays, e.g. a spreadsheet file, are
  32.                     not broken at 80 columns, as with TYPE.
  33.                     BROWSE ignores carriage returns (ASCII 13),
  34.                     breaking lines only on line feeds (ASCII 10).
  35.                     The Right Arrow key scrolls the display to
  36.                     the right in eight-character increments (see
  37.                     Note 3 below) to view wide displays; the Left
  38.                     Arrow key returns you immediately to column
  39.                     zero.
  40.  
  41.                     BROWSE expands tab characters (ASCII 9) to
  42.                     the next eight-character boundary, but does
  43.                     no other character processing unless the /W
  44.                     parameter is specified.  Use of the /W option
  45.                     permits using BROWSE with WordStar files.
  46.  
  47.                     Notes:
  48.  
  49.                     1.   BROWSE can run under TopView or Windows;
  50.                          specify "writes directly to screen" in
  51.                          the .PIF and use the default 52K memory
  52.                          requirement.  (The program actually
  53.                          requires only approximately 33K to run.)
  54.                          For the TopView PIF, specify that the
  55.                          program intercepts Interrupt 23h.
  56.  
  57.                     2.   BROWSE is compatible with the IBM
  58.                          monochrome, CGA, and EGA displays, and
  59.  
  60.  
  61.  
  62.                                  Page -2-
  63.  
  64.                          will even run in the EGA 43-line mode.
  65.                          Files prepared with word-processors that
  66.                          employ a one-line-per-paragraph format
  67.                          (such as Microsoft Word and XyWrite) may
  68.                          to require excessive right scrolling,
  69.                          however.
  70.  
  71.                     3.   BROWSE.COM can be patched with DEBUG so
  72.                          that its right-scroll jumps by more than
  73.                          the default eight characters.  The
  74.                          address to patch is 10F in the .COM
  75.                          file.  After entering DEBUG BROWSE.COM
  76.                          type
  77.  
  78.                               E 10F
  79.  
  80.                          and the default value (08h) will appear.
  81.                          Type the desired hexadecimal number (28
  82.                          for a 40-column increment; 50 for an 80-
  83.                          column increment) and press <Enter>.
  84.                          Then type W<Enter> to write to the disk
  85.                          and Q<Enter> to quit DEBUG.
  86.  
  87.                     4.   Requires DOS 2.0 or later.
  88.